+2005-11-27 Tor Lillqvist <tml@novell.com>
+
+ * gdk/win32/gdkwindow-win32.c (set_or_clear_style_bits): Revert to
+ the correct semantics. (#322516)
+ (gdk_window_set_geometry_hints): Adjust call correspondingly.
+
2005-11-25 Dom Lachowicz <cinamod@hotmail.com>
* modules/engines/ms-windows/*.[ch]: Merge with gtk-wimp's CVS.
+2005-11-27 Tor Lillqvist <tml@novell.com>
+
+ * gdk/win32/gdkwindow-win32.c (set_or_clear_style_bits): Revert to
+ the correct semantics. (#322516)
+ (gdk_window_set_geometry_hints): Adjust call correspondingly.
+
2005-11-25 Dom Lachowicz <cinamod@hotmail.com>
* modules/engines/ms-windows/*.[ch]: Merge with gtk-wimp's CVS.
gdk_window_set_decorations (window,
GDK_DECOR_ALL |
GDK_DECOR_MAXIMIZE);
- gdk_window_set_decorations (window,
- GDK_DECOR_RESIZEH);
}
else
- gdk_window_set_decorations (window,
- GDK_DECOR_RESIZEH |
- GDK_DECOR_MAXIMIZE);
+ gdk_window_set_decorations (window, GDK_DECOR_ALL);
if (geom_mask & GDK_HINT_BASE_SIZE)
{
{
LONG style, exstyle;
RECT rect, before, after;
+ const LONG settable_bits = WS_BORDER|WS_THICKFRAME|WS_CAPTION|WS_SYSMENU|WS_MINIMIZEBOX|WS_MAXIMIZEBOX;
style = GetWindowLong (GDK_WINDOW_HWND (window), GWL_STYLE);
exstyle = GetWindowLong (GDK_WINDOW_HWND (window), GWL_EXSTYLE);
AdjustWindowRectEx (&before, style, FALSE, exstyle);
if (clear_bits)
- style &= ~bits;
+ style |= settable_bits, style &= ~bits;
else
- style |= bits;
+ style &= ~settable_bits, style |= bits;
SetWindowLong (GDK_WINDOW_HWND (window), GWL_STYLE, style);